home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n11 / batch1.exe / FILEFIND.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-09-17  |  207 b   |  12 lines

  1. @ECHO OFF
  2. REM This is FILEFIND.BAT
  3. IF %1!==! GOTO OOPS
  4. ECHO Searching for %1 . . .
  5. ATTRIB \%1 /S | MORE
  6. GOTO END
  7. :OOPS
  8. ECHO Enter the name of the
  9. ECHO file you want to find
  10. ECHO after the %0
  11. :END
  12.